home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Review.dxr / 00003_Navigation handlers.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  520 b   |  29 lines

  1. global gMasterData, gSection, gFlashTime
  2.  
  3. on goIntro
  4.   go(label("intro"))
  5.   set gSection to #intro
  6.   goNarrator(gMasterData, "156")
  7. end
  8.  
  9. on goReview
  10.   stopSound2()
  11.   go("Review")
  12.   goNarrator(gMasterData, "157")
  13.   initReviewData()
  14.   set gSection to #review
  15.   set gFlashTime to the ticks
  16. end
  17.  
  18. on goScore
  19.   scoreTheInput()
  20.   set the member of sprite 2 to member "spin title"
  21.   stopSound2()
  22.   go("score")
  23.   set gSection to #score
  24.   showScore()
  25.   if not activationOn(gMasterData) then
  26.     activate(gMasterData)
  27.   end if
  28. end
  29.